home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Mouse Logitech 2.xpl < prev    next >
Text File  |  2001-11-27  |  1KB  |  41 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Hardware\Mouse\Logitech"
  5. "NAME"="Game Compatibility"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Improve wheel mouse compatibility with games"
  8. "DESCRIPTION 1"="Sometimes, when you use your Logitech Wheel Mouse with certain Windows games, there are compatibility problems caused by the Logitech MouseWare software."
  9. "DESCRIPTION 2"="To improve compatibility, put a tick in the box. If you find that this causes side-effects, then you can disbale it again."
  10. "DESCRIPTION 3"="For more information, see this official document on Logitech's FTP server: ftp://ftp.logitech.com/pub/techsupport/mouse/game_whl.txt"
  11. "COMMENT 1"="Thanks to Xeno (xeno100@crosswinds.net) for the Wheel Mouse Compatibility option!"
  12. "VERSION"="1.01"
  13. "AUTHOR"="Xteq Systems (Neil R. Turner)"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "OSVERSION"="101010"
  16. "CONTACTURL"="http://www.xteq.com/"
  17.  
  18. sT="HKEY_LOCAL_MACHINE\Software\Logitech\MouseWare\CurrentVersion\Technical\MouseHookDllEnable"
  19.  
  20. SUB Plugin_Initialize
  21.   g=RegReadValue(sT)
  22.   if g=0 then
  23.    Call SetUIElement(3,true)
  24.   end if
  25. END SUB
  26.  
  27. SUB Plugin_CheckData(ElementIndex)
  28. END SUB
  29.  
  30. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  31.   b=GetUIElement(3)
  32.   if b=true then
  33.    Call RegWriteValue(sT,"0",1)
  34.   else
  35.    Call RegWriteValue(sT,"1",1)
  36.   end if
  37. END SUB
  38.  
  39. SUB Plugin_Terminate
  40. END SUB
  41.